home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / tests / pager / pager.c.unix < prev   
Text File  |  1988-09-06  |  539b  |  33 lines

  1. #include <stdio.h>
  2. #include "/sprite/lib/include/sprite.h"
  3.  
  4. static    int    big[3000][512];
  5.  
  6. main(argc, argv)
  7.     int  argc;
  8.     char *argv[];
  9. {
  10.     int        i, j;
  11.     Boolean    once = FALSE;
  12.  
  13.     for (j = 1; j <= 3; j++) {
  14.     for (i = 1; i <= 2000; i++) {
  15.         if (once && big[i][0] != i) {
  16.         printf("Error: big[%d][0] = %d\n", i, big[i][0]);
  17.         fflush(stdout);
  18.         }
  19.  
  20.         if (i % 100 == 0) {
  21.         printf("%d\n", i);
  22.         fflush(stdout);
  23.         }
  24.         if (!once) {
  25.         big[i][0] = i;
  26.         }
  27.     }
  28.     once = TRUE;
  29.     printf("\nPass %d\n", j);
  30.     fflush(stdout);
  31.     }
  32. }
  33.